home *** CD-ROM | disk | FTP | other *** search
/ PC Graphics Unleashed / PC Graphics Unleashed.iso / ch18 / rad386 / makefile < prev    next >
Makefile  |  1992-01-18  |  503b  |  21 lines

  1. SHELL = /bin/sh
  2.  
  3. all:    rad filter preview
  4.  
  5. rad:    
  6.     (cd radiosity/src && make -f makefile.ansi);
  7. #    (cd radiosity/src && make -f makefile.unix);
  8. filter:
  9.     (cd radiosity/scene/filter/src && make);
  10. preview:
  11.     (cd radiosity/scene/filter/preview/src && make);
  12.  
  13. STUFF = radiosity/src\
  14.     radiosity/scene/filter/src\
  15.     radiosity/scene/filter/preview/src
  16.  
  17. clean:
  18.     (cd radiosity/src && make -f makefile.ansi clean);
  19.     (cd radiosity/scene/filter/src && make clean);
  20.     (cd radiosity/scene/filter/preview/src && make clean);
  21.